Skip to content

ObserverBase.OnNextCore(T) method

Defined in

Type: ObserverBase Namespace: System.Reactive Assembly: System.Reactive.dll

Applies to

netstandard2.0

protected abstract void OnNextCore(T value)

Summary: Implement this method to react to the receival of a new element in the sequence.

Parameters

NameTypeDescription
valueTNext element in the sequence.

Remarks

This method only gets called when the observer hasn't stopped yet.